home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / rexx / 574 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  968 b 

  1. Path: venus.ConnectI.com!news
  2. From: garden@Connecti.com
  3. Newsgroups: comp.lang.rexx
  4. Subject: VisProRexx VpDraw examples wanted.
  5. Date: 30 Jan 1996 12:52:34 GMT
  6. Organization: Connect International
  7. Distribution: inet
  8. Message-ID: <4el4ai$8gi@venus.ConnectI.com>
  9. References: <4ehjah$60@bingnet1.cc.binghamton.edu>
  10. Reply-To: garden@Connecti.com
  11. NNTP-Posting-Host: ppp6675.connecti.com
  12. X-Newsreader: IBM NewsReader/2 v1.03
  13.  
  14. I am writting an application in VisProRexx to facilitate flowcharting.  I am 
  15. using the VpDraw functions in a Free Form window.  Does anyone have an 
  16. example of the calls that you make to draw a box and fill it with a pattern?
  17.  
  18. I have coded the following with no success, it does not even draw the box:
  19.  
  20.   rc=VpDraw(window,'1000','BEGINPATH')
  21.   rc=VpDraw(window,'1000','PATTERN',3)
  22.   rc=VpDraw(window,'1000','MOVE',begin_x,begin_y)
  23.   rc=VpDraw(window,'1000','BOX',end_x,end_y)
  24.   rc=VpDraw(window,'1000','FILLPATH')
  25.   rc=VpDraw(window,'1000','ENDPATH')
  26.